home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mono-gac.postinst < prev    next >
Encoding:
Text File  |  2007-02-27  |  353 b   |  14 lines

  1. #!/bin/sh -e
  2.  
  3. # Install the GAC
  4. if [ -x /usr/share/cli-common/gac-install ]; then
  5.     /usr/share/cli-common/gac-install mono
  6. fi
  7.  
  8. # Update the alternatives
  9. update-alternatives \
  10.     --install /usr/bin/cli-gacutil global-assembly-cache-tool /usr/bin/gacutil 10 \
  11.     --slave /usr/share/man/man1/cli-gacutil.1.gz cli-gacutil.1.gz /usr/share/man/man1/gacutil.1.gz
  12.  
  13.  
  14.